# LockNKey - Git Ignore File

# ============================================
# Node.js / JavaScript / TypeScript
# ============================================

# Dependencies
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

# Build outputs
dist/
build/
.next/
out/
.turbo/

# Production
*.tgz
*.zip

# Testing
coverage/
.nyc_output
*.lcov

# Cache
.npm
.eslintcache
.cache
.parcel-cache

# ============================================
# Python
# ============================================

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
*.so

# Distribution / packaging
.Python
env/
venv/
ENV/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
# Python virtual environment library directories (not source code lib/ dirs)
**/venv/lib/
**/venv/lib64/
**/env/lib/
**/env/lib64/
**/.venv/lib/
**/.venv/lib64/
**/ENV/lib/
**/ENV/lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
*.manifest
*.spec

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.pytest_cache/
nosetests.xml
coverage.xml
*.cover
.hypothesis/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# Environments
.env
.env.local
.env.*.local
.env.development
.env.production
.env.test
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# ============================================
# Docker
# ============================================

# Docker volumes and data
docker-compose.override.yml
.docker/

# ============================================
# IDEs and Editors
# ============================================

# VSCode
.vscode/
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace

# JetBrains IDEs (IntelliJ, WebStorm, PyCharm, etc.)
.idea/
*.iml
*.iws
*.ipr

# Sublime Text
*.sublime-project
*.sublime-workspace

# Vim
*.swp
*.swo
*~
.vim/

# Emacs
*~
\#*\#
/.emacs.desktop
/.emacs.desktop.lock
*.elc

# ============================================
# Operating Systems
# ============================================

# macOS
.DS_Store
.AppleDouble
.LSOverride
._*
.Spotlight-V100
.Trashes

# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
*.lnk

# Linux
*~
.directory
.Trash-*

# ============================================
# Logs
# ============================================

logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

# ============================================
# Secrets & Credentials
# ============================================

# Environment files with secrets
*.env
.env.*
!.env.example
!.env.template

# Credentials
credentials.json
secrets.json
*.pem
*.key
*.cert
*.crt
*.p12
*.pfx

# API keys
.api-keys
api-keys.txt

# MCP configuration (contains tokens)
.mcp.json

# ============================================
# Database
# ============================================

# SQLite
*.db
*.sqlite
*.sqlite3

# PostgreSQL dumps
*.sql
*.dump

# ============================================
# Supabase
# ============================================

# Supabase local development
.supabase/
supabase/.temp/
supabase/docker/

# ============================================
# Temporary Files
# ============================================

# Temporary files
tmp/
temp/
*.tmp
*.temp
*.bak
*.backup

# ============================================
# Claude Code / AI Assistants
# ============================================

# Ignore .claude/ directory (internal documentation)
.claude/

# Project instructions file (should not be committed)
CLAUDE.md

# ============================================
# Build Tools & Package Managers
# ============================================

# Webpack
.webpack/

# Rollup
.rollup.cache/

# Vite
.vite/

# Turbopack
.turbo/

# ============================================
# Testing
# ============================================

# Jest
jest-results/
__tests__/__snapshots__/

# Playwright
test-results/
playwright-report/
playwright/.cache/

# ============================================
# Misc
# ============================================

# Lock files (include in repo for reproducibility)
# Uncomment if you want to ignore them
# package-lock.json
# yarn.lock
# pnpm-lock.yaml

# Debug
.vscode-test/
debug/

# TypeScript
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Yarn Integrity file
.yarn-integrity

# parcel-bundler cache
.cache
.parcel-cache

# Next.js
.next/
out/

# Nuxt.js
.nuxt
dist

# Gatsby files
.cache/
public

# Storybook build outputs
.storybook-static

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*